home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ultra Pack
/
UltraComputing Technology Demos and Tools.iso
/
WWW
/
se.install.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1996-03-22
|
206b
|
17 lines
#! /bin/sh
#set -x
FALSE=0
TRUE=1
if [ -w /opt ]
then
echo Installing RICHPse in /opt
cd $ULTRA_PACK_HOME/se/opt
find RICHPse -print | cpio -pdm /opt
else
echo No write access to /opt
exit 1
fi